test-driven development 예문
- Test-driven development simply formalizes the problem in a Python test case.
테스트 주도 개발은 파이썬 테스트 케이스로 문제를 간추려 공식화합니다. - Some programmers follow a discipline called "test-driven development "; they actually write their tests before they write their code.
어떤 프로그래머들은 "테스트 주도 개발 "이라는 원칙을 따릅니다. - This style of development is called test-driven development and can be applied to both entire projects and single patches.
이러한 개발 스타일은 `test-driven development`__ 이라고 불리우며, 낱개의 패치에서부터 전체 프로젝트에 이르기까지 적용이 가능합니다. - In fact that was a simple example of test-driven development, but it doesn't really matter in which order we do the work.
사실 그것은 테스트 주도 개발의 간단한 예제 였지만 어떤 순서로 작업하는지는 중요하지 않습니다.